diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/po-rfq/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/po-rfq/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/po-rfq/page.tsx b/app/[lng]/evcp/(evcp)/po-rfq/page.tsx index bdeae25e..99eab9f3 100644 --- a/app/[lng]/evcp/(evcp)/po-rfq/page.tsx +++ b/app/[lng]/evcp/(evcp)/po-rfq/page.tsx @@ -6,7 +6,7 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" import { RFQListTable } from "@/lib/procurement-rfqs/table/rfq-table" import { type SearchParams } from "@/types/table" import * as React from "react" - +import { InformationButton } from "@/components/information/information-button" interface RfqPageProps { searchParams: Promise<SearchParams> } @@ -33,9 +33,12 @@ export default async function RfqPage(props: RfqPageProps) { <div className="flex-shrink-0"> <div className="flex items-center justify-between"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - 발주용 견적 - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + 발주용 견적 + </h2> + <InformationButton pageCode="evcp/po-rfq" /> + </div> </div> </div> </div> |
